home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / b2obj11b.zip / MAKEFILE < prev    next >
Text File  |  1994-06-11  |  638b  |  23 lines

  1. # Makefile to create test.exe
  2. # text.exe first displays a introduction picture on screen then
  3. # print bin2obj.txt.
  4.  
  5. # acturally, if intropic and introdoc both have the same data segment name,
  6. # they will be packed into one data segment.
  7.  
  8. CC=bcc
  9. debug=-v
  10. model=-mh
  11.  
  12. test.exe: test.obj introdoc.obj intropic.obj
  13.   $(CC) -M $(debug) $(model) test.obj introdoc.obj intropic.obj graphics.lib
  14.  
  15. test.obj: test.c
  16.   $(CC) $(debug) $(model) -c test.c
  17.  
  18. introdoc.obj: test.txt
  19.   bin2obj introdoc.obj _RES_DATA DATA BYTE _IntroText test.txt
  20.  
  21. intropic.obj: test.vga
  22.   bin2obj intropic.obj _RES_DATA DATA BYTE _IntroPict test.vga
  23.